home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fatted Calf
/
The Fatted Calf.iso
/
Modules
/
BackSpaceModules
/
Source
/
Snakes
/
SnakesView.h
< prev
next >
Wrap
Text File
|
1992-10-20
|
408b
|
28 lines
//
// Snakes
//
// Module for BackSpace.app
// 20 Aug 1992
// Matt Pharr- pharr@cs.yale.edu
//
#import <appkit/appkit.h>
#import "Thinker.h"
@interface SnakesView:View
{
int nSnakes;
int aliveSnakes;
int nSteps;
id nSnakesSlider;
id inspectorPanel;
}
-oneStep;
-initFrame:(const NXRect *)frameRect;
-drawSelf:(const NXRect *)rects :(int)rectCount;
-inspector:sender;
-setNSnakes:sender;
@end